plotly hide legend

31

fig.update_layout(showlegend=False)
fig.add_trace(go.Scatter(
    x=[1, 2],
    y=[1, 2],
    showlegend=False))

Comments

Submit
0 Comments